home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / grafik / bildanzeiger / superview-lib_dev / include / superviewsupport / svsupportbase.h < prev   
C/C++ Source or Header  |  1995-03-09  |  972b  |  37 lines

  1. /* superviewsupport/svsupportbase.h */
  2. /* Version    : 2.1                 */
  3. /* Date       : 22.05.1994          */
  4. /* Written by : Andreas R. Kleinert */
  5.  
  6. #ifndef SUPERVIEWSUPPORT_SVSUPPORTBASE_H
  7. #define SUPERVIEWSUPPORT_SVSUPPORTBASE_H
  8.  
  9. #ifndef SUPERVIEWSUPPORT_SUPERVIEWSUPPORT_H
  10. #include <superviewsupport/superviewsupport.h>
  11. #endif /* SUPERVIEWSUPPORT_SUPERVIEWSUPPORT_H */
  12.  
  13. #ifndef EXEC_LISTS
  14. #include <exec/lists.h>
  15. #endif /* EXEC_LISTS */
  16.  
  17. #ifndef EXEC_LIBRARIES
  18. #include <exec/libraries.h>
  19. #endif /* EXEC_LIBRARIES_H */
  20.  
  21. #ifndef SVDRIVERS_SVDRIVERS_H
  22. #include <svdrivers/svdrivers.h>
  23. #endif /* SVDRIVERS_SVDRIVERS_H */
  24.  
  25. struct SVSupportBase
  26. {
  27.  struct Library         svb_LibNode;
  28.  APTR                   svb_SegList;
  29.  struct ExecBase       *svb_SysBase;
  30.  struct DosLibrary     *svb_DOSBase;
  31.  struct IntuitionBase  *svb_IntuitionBase;
  32.  struct GfxBase        *svb_GfxBase;
  33.  struct Library        *svb_UtilityBase;
  34. };
  35.  
  36. #endif /* SUPERVIEWSUPPORT_SVSUPPORTBASE_H */
  37.